home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue44 / system / Peeker.dpr next >
Encoding:
Text File  |  1999-02-24  |  195 b   |  14 lines

  1. program Peeker;
  2.  
  3. uses
  4.   Forms,
  5.   UMain in 'UMain.pas' {PeekForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TPeekForm, PeekForm);
  12.   Application.Run;
  13. end.
  14.